home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / util3 / util1.arc / BROWSE.DOC < prev    next >
Encoding:
Text File  |  1988-10-27  |  4.1 KB  |  84 lines

  1.           Browse                                 Charles Petzold
  2.           Command                                          No. 3
  3.  
  4.           _______________________________________________________
  5.  
  6.           Purpose   Permits scrolling forward and backward
  7.                     throughout a file without use of a word
  8.                     processing program.
  9.  
  10.           Format:   BROWSE [d:][path]filename[.ext] [/W]
  11.  
  12.           Remarks:  The DOS TYPE command does not permit you to
  13.                     scroll ahead or go back to previously
  14.                     displayed material in a file.  It also exits
  15.                     at the first instance of Ctrl-Z (ASCII 26,
  16.                     conventionally used as an End-of-File
  17.                     marker), making it impossible to scan binary
  18.                     (e.g. .COM) files for error messages,
  19.                     copyright notices, and the like.
  20.  
  21.                     BROWSE.COM overcomes these shortcomings,
  22.                     giving you the chance to go immediately to
  23.                     the top or to the end of a file (the Home and
  24.                     End keys, respectively), to the succeeding or
  25.                     previous screen (PgUp and PgDn), or to move
  26.                     up or down a line at a time (Up Arrow or Down
  27.                     Arrow).  To return to DOS, simply press the
  28.                     Escape key or Ctrl-Break.
  29.  
  30.                     Wide displays, e.g. a spreadsheet file, are
  31.                     not broken at 80 columns, as with TYPE.
  32.                     BROWSE ignores carriage returns (ASCII 13),
  33.                     breaking lines only on line feeds (ASCII 10).
  34.                     The Right Arrow key scrolls the display to
  35.                     the right in eight-character increments (see
  36.                     Note 3 below) to view wide displays; the Left
  37.                     Arrow key returns you immediately to column
  38.                     zero.
  39.  
  40.                     BROWSE expands tab characters (ASCII 9) to
  41.                     the next eight-character boundary, but does
  42.                     no other character processing unless the /W
  43.                     parameter is specified.  Use of the /W option
  44.                     permits using BROWSE with WordStar files.
  45.  
  46.                     Notes:
  47.  
  48.                     1.   BROWSE can run under TopView or Windows;
  49.                          specify "writes directly to screen" in
  50.                          the .PIF and use the default 52K memory
  51.                          requirement.  (The program actually
  52.                          requires only approximately 33K to run.)
  53.                          For the TopView PIF, specify that the
  54.                          program intercepts Interrupt 23h.
  55.  
  56.                     2.   BROWSE is compatible with the IBM
  57.                          monochrome, CGA, and EGA displays, and
  58.                          will even run in the EGA 43-line mode.
  59.                          Files prepared with word-processors that
  60.                          employ a one-line-per-paragraph format
  61.                          (such as Microsoft Word and XyWrite) may
  62.                          to require excessive right scrolling,
  63.                          however.
  64.  
  65.                     3.   BROWSE.COM can be patched with DEBUG so
  66.                          that its right-scroll jumps by more than
  67.                          the default eight characters.  The
  68.                          address to patch is 10F in the .COM
  69.                          file.  After entering DEBUG BROWSE.COM
  70.                          type
  71.  
  72.                               E 10F
  73.  
  74.                          and the default value (08h) will appear.
  75.                          Type the desired hexadecimal number (28
  76.                          for a 40-column increment; 50 for an 80-
  77.                          column increment) and press <Enter>.
  78.                          Then type W<Enter> to write to the disk
  79.                          and Q<Enter> to quit DEBUG.
  80.  
  81.                     4.   Requires DOS 2.0 or later.
  82.  
  83.  
  84.